home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / BI_NEW.C < prev    next >
C/C++ Source or Header  |  1992-03-02  |  202b  |  17 lines

  1. typedef void (*vfp)();
  2.  
  3. extern vfp __new_handler;
  4.  
  5. char *
  6. __builtin_new (sz)
  7.      long sz;
  8. {
  9.   char *p;
  10.  
  11.   p = (char *)malloc (sz);
  12.   if (p == 0)
  13.     (*__new_handler) ();
  14.   return p;
  15. }
  16.  
  17.